summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-05-19 00:01:01 +0200
committerLiam <byteslice@airmail.cc>2023-05-19 00:01:01 +0200
commitde7c92d7c4dcb65beef3c9248f1a8e5e05afee34 (patch)
tree20fe210e3268c63998531ba91e4ac6d0783f9c13
parentMerge pull request #10365 from lat9nq/anv_push_descriptor (diff)
downloadyuzu-de7c92d7c4dcb65beef3c9248f1a8e5e05afee34.tar
yuzu-de7c92d7c4dcb65beef3c9248f1a8e5e05afee34.tar.gz
yuzu-de7c92d7c4dcb65beef3c9248f1a8e5e05afee34.tar.bz2
yuzu-de7c92d7c4dcb65beef3c9248f1a8e5e05afee34.tar.lz
yuzu-de7c92d7c4dcb65beef3c9248f1a8e5e05afee34.tar.xz
yuzu-de7c92d7c4dcb65beef3c9248f1a8e5e05afee34.tar.zst
yuzu-de7c92d7c4dcb65beef3c9248f1a8e5e05afee34.zip
-rw-r--r--src/video_core/renderer_vulkan/vk_swapchain.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/renderer_vulkan/vk_swapchain.cpp b/src/video_core/renderer_vulkan/vk_swapchain.cpp
index 1e80ce463..8c0dec590 100644
--- a/src/video_core/renderer_vulkan/vk_swapchain.cpp
+++ b/src/video_core/renderer_vulkan/vk_swapchain.cpp
@@ -34,8 +34,8 @@ VkSurfaceFormatKHR ChooseSwapSurfaceFormat(vk::Span<VkSurfaceFormatKHR> formats)
return found != formats.end() ? *found : formats[0];
}
-static constexpr VkPresentModeKHR ChooseSwapPresentMode(bool has_imm, bool has_mailbox,
- bool has_fifo_relaxed) {
+static VkPresentModeKHR ChooseSwapPresentMode(bool has_imm, bool has_mailbox,
+ bool has_fifo_relaxed) {
// Mailbox doesn't lock the application like FIFO (vsync)
// FIFO present mode locks the framerate to the monitor's refresh rate
Settings::VSyncMode setting = [has_imm, has_mailbox]() {